Faster rcnn Explained with code

       最近在看mmdetection源码,对于有些代码实现原理不是很清楚。由于mmdetection中实现的算法大多是two-stage方法,Faster rcnn作为这类方法的鼻祖,十分经典,详细地了解其实现具体原理十分重要。下面主要是推荐两篇关于Faster RCNN的blog,这两篇blog都是基于同一个代码实现来讲解的。
代码地址https://github.com/jwyang/faster-rcnn.pytorch
blog 1 :Object Detection and Classification using R-CNNs
blog 2FasterRCNN Explained with Code